/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: url('Application\ Development.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
}

/* Dropdown styles */
.menu .dropdown {
    position: relative;
}

.menu .dropdown .arrow-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

.menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none; /* Initially hidden */
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border-radius: 5px;
    min-width: 200px;
}

.menu .dropdown-menu li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.menu .dropdown-menu li:last-child {
    border-bottom: none;
}

.menu .dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.menu .dropdown-menu li a:hover {
    background-color: #f4f4f4;
}

/* Show dropdown on hover */
.menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 3rem 1.5rem; /* Reduced padding */
    background-color: #f8f9fa;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem; /* Reduced margin */
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem; /* Adjusted gap */
}

.feature {
    text-align: center;
    flex: 1 1 calc(33% - 1.5rem);
    max-width: 400px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.2rem; /* Adjusted padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    max-width: 80px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #007BFF;
}

.feature p {
    font-size: 0.9rem;
    color: #555;
}

/* Development Process Section */
.process-section {
    padding: 3rem 1.5rem; /* Reduced padding */
    text-align: center;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem; /* Reduced margin */
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centered alignment */
    gap: 1.5rem; /* Adjusted gap */
}

.step {
    flex: 1 1 calc(20% - 1rem);
    max-width: 300px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.step:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step img {
    width: 200px; /* Ensures consistent size */
    height: 200px;
    object-fit: cover; /* Crop image proportionally */
    border-radius: 8px;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 1.5rem; /* Reduced padding */
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem; /* Reduced margin */
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem; /* Adjusted gap */
}

.card {
    flex: 1 1 calc(45% - 1.5rem);
    max-width: 400px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.card h4 {
    font-size: 1.25rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.card span {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features, .process-steps, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature, .step, .card {
        flex: 1 1 100%;
        max-width: none;
    }

    .step img {
        width: 80px; /* Smaller image size for mobile */
        height: 80px;
    }
}

/* Technologies We Use Section */
.technologies {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.technologies h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.technologies p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tech-item {
    text-align: center;
    flex: 1 1 calc(25% - 2rem);
    max-width: 200px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.1);
}

.tech-item img {
    width: 80px; /* Ensure all logos are the same width */
    height: 80px; /* Ensure all logos are the same height */
    object-fit: contain; /* Keep the aspect ratio */
    margin-bottom: 1rem;
}

.tech-item h3 {
    font-size: 1rem;
    color: #007BFF;
}

